home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CUCD / Programming / OUI / envman.lha / EnvManager / rcs / listreq.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-23  |  646 b   |  48 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     dlorre:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    96.08.23.16.57.35;    author dlorre;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @EnvManager : Gestionnaire d'Environnement
  17. Auteur : Dominique Lorre
  18. @
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @// listreq.h
  27. // 01.02.95
  28.  
  29.  
  30. #include <libraries/gadtools.h>
  31.  
  32. #include "screen.h"
  33. #include "window.h"
  34. #include "gadgets/listview.h"
  35.  
  36. class rlist : public window
  37. {
  38. public:
  39.     STRPTR titre ;
  40.     rlist(short l, short t, short w, short h) : window(l, t, w, h) {}
  41.     void        open(screen *) ;
  42.     void flist(gadget *g, unsigned long classe, unsigned short code) ;
  43. };
  44.  
  45.  
  46. IMPORT screen   *ns ;
  47. @
  48.